home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
User's Choice Windows CD
/
User's Choice Windows CD (CMS Software)(1993).iso
/
go.bat
< prev
next >
Wrap
DOS Batch File
|
1993-10-18
|
650b
|
35 lines
@echo off
cd \
cls
cd \winware
if "%1"=="color" goto color
if "%1"=="COLOR" goto color
if "%1"=="Color" goto color
if "%1"=="Mono" goto mono
if "%1"=="mono" goto mono
if "%1"=="MONO" goto mono
goto oops
:color
winware color
goto end
:mono
winware mono
goto end
:oops
cls
echo.
echo.
echo !!!!!!!! WARNING !!!!!!!!
echo
echo You have tried to install the file retrieval system
echo without one of the required options. Please execute GO MONO or
echo GO COLOR to install the file retrieval system.
echo.
pause
cls
cd ..
goto end2
:end
install
:end2